iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 7
1
Software Development

C#可以做出甚麼?系列 第 7

鏈表是甚麼?

  • 分享至 

  • xImage
  •  

這篇想要來寫鏈表~因為一開始看到不知道是甚麼/images/emoticon/emoticon33.gif

原來是鏈表LIST
感覺很專業~那就來了解一下/images/emoticon/emoticon27.gif

先聲明裏面有四個整數:

using System;
using System.Collections.Generic;

namespace HelloWorld2
{
     class Program
    {
        public static void Main(string[] args)
        {
            List <int> userAgeList = new List <int> { 11,21,31,41};

        }
    }
}

當要選第一個就是0時,

using System;
using System.Collections.Generic;

namespace HelloWorld2
{
     class Program
    {
        public static void Main(string[] args)
        {
            List <int> userAgeList = new List <int> { 11,21,31,41};

            userAgeList[0];

        }
    }
}


當要第2個位置加入51

using System;
using System.Collections.Generic;

namespace HelloWorld2
{
     class Program
    {
        public static void Main(string[] args)
        {
            List <int> userAgeList = new List <int> { 11,21,31,41};

            userAgeList.Insert(2,51);

            Console.WriteLine(userAgeList);

        }
    }
}

把裡面有51的取出來

using System;
using System.Collections.Generic;

namespace HelloWorld2
{
     class Program
    {
        public static void Main(string[] args)
        {
            List <int> userAgeList = new List <int> { 11,21,31,41};

            userAgeList.Insert(2,51);

            userAgeList.Remove(51);

            Console.WriteLine(userAgeList);

        }
    }
}

把裡面有第3個位置取出來

using System;
using System.Collections.Generic;

namespace HelloWorld2
{
     class Program
    {
        public static void Main(string[] args)
        {
            List <int> userAgeList = new List <int> { 11,21,31,41};

            userAgeList.Insert(2,51);

            userAgeList.RemoveAt(2);

            Console.WriteLine(userAgeList);

        }
    }
}

DEAR ALL 我們明天見/images/emoticon/emoticon08.gif


上一篇
字符串
下一篇
開發交互式的程序
系列文
C#可以做出甚麼?30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言